std::vector::push_back
From Cppreference
| void push_back( const T& value );
| ||
| void push_back( T&& value );
| (C++0x feature) | |
Appends the given element value to the end of the container.
Contents |
Parameters
| value | - | the value of the element to append |
Return value
(none)
Complexity
constant.
See also
| constructs elements in-place at the end (public member function) | ||
| removes the last element (public member function) | ||